home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Developer / BBFig / Source / YapOutput.h < prev    next >
Text File  |  1992-05-13  |  704b  |  37 lines

  1. #import <appkit/View.h>
  2.  
  3. @interface YapOutput:View {
  4.   id cache;      // Bitmap in which we cache the output of the PS program
  5.   BOOL showCache;
  6.   BOOL clearCache;
  7.   BOOL meshON;
  8.   BOOL figureBB;
  9. }
  10.  
  11.  
  12. - initFrame:(const NXRect *)viewFrame;
  13.  
  14. - sizeTo:(NXCoord)width :(NXCoord)height;
  15. - free;
  16. // - executeCodeFrom:textObj;
  17. - executeCodeFrom:textObj andReturnBB: (float *)llx : (float *)lly
  18.                      : (float *)urx : (float *)ury
  19.               usertime: (int *) utime;
  20.  
  21. - drawSelf:(NXRect *)rects :(int)rectCount;
  22.  
  23. - (BOOL)isCacheCleared;
  24. - (BOOL)isCacheShown;
  25. - (BOOL)isMeshON;
  26. - (BOOL)isFigureBB;
  27. - setCacheCleared:(BOOL)flag;
  28. - setCacheShown:(BOOL)flag;
  29. - setMeshON:(BOOL)flag;
  30. - setFigureBB:(BOOL)flag;
  31.  
  32. @end
  33.  
  34.  
  35.  
  36.  
  37.